home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format (UK) 188
/
01-04 PC Format 188 [2006-06] DVD side 1_.iso
/
Menus
/
Scenes
/
HOME.dir
/
00020_Script_install_folder_script
< prev
next >
Wrap
Text File
|
2006-04-20
|
514b
|
34 lines
property Sp
property myPath
on init me, aSpritenum, aPath
Sp = sprite(aSpritenum)
myPath = aPath
Sp.ink = 0
member("install_button_over").regpoint = point(0,0)
end
on mouseEnter me
cursor 280
Sp.member = member("install_button_over")
end
on mouseLeave me
cursor -1
Sp.member = member("install_button")
end
on mouseUp me
ok = baOpenFile(myPath, "normal")
if ok < 32 then
alert("file not found or error with: " & myPath)
end if
Sp.ink = 0
end